home *** CD-ROM | disk | FTP | other *** search
- on enterLeafs
- go(label("Main"))
- setFingerCursor(#on, [3, 4, 5, 9])
- setPrompter()
- set the exitLock to 1
- set the keyDownScript to "quitCatcher"
- end
-
- on leaveLeafs
- set the timeoutScript to EMPTY
- setFingerCursor(#off, [3, 4, 5, 9])
- end
-
- on leafClicker
- global gPrompter
- stopSounds()
- leaveLeafs()
- if gPrompter = 0 then
- set gPrompter to 1
- end if
- cursor(4)
- case the clickOn of
- 3:
- go("start", "Assess")
- 4:
- go("start", "Tools")
- 5:
- go("start", "Changes")
- end case
- end
-
- on setPrompter
- global gPrompter
- set the timeoutLength to 30 * 60
- if voidp(gPrompter) then
- set gPrompter to 0
- end if
- case gPrompter of
- 0:
- set the timeoutScript to "clickDummy1"
- 1:
- set the timeoutScript to "clickDummy2"
- end case
- end
-
- on clickDummy1
- puppetSound("clikself.aif")
- end
-
- on clickDummy2
- puppetSound("clikleaf.aif")
- end
-
- on quitCatcher
- if the commandDown and ((the key = "q") or (the key = ".")) then
- goQuitScreen()
- end if
- pass()
- end
-